home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 263_02 / turboc.bat < prev    next >
DOS Batch File  |  1990-02-13  |  896b  |  29 lines

  1. REM
  2. REM  This batch file issues the shareware TurboC libraries from disk #1.
  3. REM  It makes certain assumptions about diskette drives and the directories
  4. REM  used for your TurboC installation.  If these are wrong, you will need
  5. REM  to edit this file before installation can begin.
  6. REM
  7. REM  The assumptions are:
  8. REM  a) The diskette is ....................  A:
  9. REM  b) The TurboC main directory is .......  \TC
  10. REM  c) The libraries go into ..............  \TC\LIB
  11. REM  b) The header files go into ...........  \TC\INCLUDE
  12. REM
  13.  
  14. IF NOT EXIST \TC\INCLUDE\stdio.h GOTO ERREND
  15.  
  16. COPY  A:*.h         \TC\INCLUDE /v
  17. COPY  A:mc_wndw.tbc \TC\LIB\mc_wndw.lib /v
  18. COPY  A:mc_ndx.tbc  \TC\LIB\mc_ndx.lib /v
  19. COPY  A:compile.tbc \TC\compile.bat /v
  20. MKDIR \TC\marietta
  21.  
  22. GOTO END
  23.  
  24. :ERREND
  25. REM  Your directories are not setup the way we assumed
  26. REM  Edit the TURBOC.BAT file.
  27.  
  28. :END
  29.